home *** CD-ROM | disk | FTP | other *** search
- // regview.h : interface of the CRegView class
- //
- /////////////////////////////////////////////////////////////////////////////
-
- class CRegView : public CView
- {
- protected: // create from serialization only
- DECLARE_DYNCREATE(CRegView)
-
- // Attributes
- public:
- CRegView();
- CRegDoc* GetDocument();
-
- // Operations
- public:
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CRegView)
- public:
- virtual void OnDraw(CDC* pDC); // overridden to draw this view
- protected:
- //}}AFX_VIRTUAL
-
- // Implementation
- public:
- virtual ~CRegView();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
- protected:
-
- // Generated message map functions
- protected:
- //{{AFX_MSG(CRegView)
- // NOTE - the ClassWizard will add and remove member functions here.
- // DO NOT EDIT what you see in these blocks of generated code !
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- #ifndef _DEBUG // debug version in regview.cpp
- inline CRegDoc* CRegView::GetDocument()
- { return (CRegDoc*)m_pDocument; }
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
-